home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_02
/
1002024c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-12-03
|
211 b
|
7 lines
#define add() (push(pop() + pop()))
#define subtract() {int temp = pop(); (push(pop() - temp))}
#define multiply() (push(pop() * pop()))
#define divide() {int temp = pop(); (push(pop() / temp))}